/* CSS Menus - Vertical CSS Menu with Popout and Dropdown Menus - 20050131 */


/* Begin CSS Popout Menu */

#menu{
position:relative;
top:0em;
left:0;
z-index:2;
width:90%;
padding-bottom:0em; /* To allow room for bottom dropdown */
border-width:  0px 1px 0px 0px;
border-color:  #000000;

}

#menu a, #menu h2{
font: 11px, verdana,arial,helvetica,sans-serif;
font-weight:  bold;
display:block;
border:0;
border-style:solid;
border-color:#000000;
white-space:wrap;
margin:0;
padding:0px;
}

#menu h2{
color:#000000;
background-color:  #ffffff;
}

#menu a{
color:#000;
background-color:  #ffffff;
text-decoration:none;
}

#menu a:hover{
color:#817b6e;
background-color:  #ffffff;
text-decoration: underline;
}

#menu a:active{
color:#000000;
background-color:  #ffffff;
text-decoration:  underline;
}

#menu a:visited {
color: #a31313;
text-decoration: none;
}

#menu ul{
list-style-type:none;
margin:0;
padding: 0px;
width:100%;
background-color:  #ffffff;
}

#menu li{
border-width: 0px 0px 1px 0px;
border-style: solid;
border-color: #00000;
padding: 6px 2px 6px 2px;
background-color:  #ffffff;

}

#menu li ul li {
border-width: 1px;
border-style: solid;
border-color: #000000;
background-color:  #ffffff;
}

/* Requirement: Put the element selector name (div)
onto non anchor hover selectors to force IE5 and
5.5 to correctly apply the csshover file. */



div#menu li, div#menu li:hover{
position:relative;
}

div#menu li ul{
position:absolute;
top:0;
left:100%;
display:none;
}

div#menu ul ul,
div#menu ul ul ul,
div#menu ul li:hover ul ul,
div#menu ul li:hover ul ul ul
{display:none;}

div#menu ul li:hover ul,
div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul
{display:block;}

/* End non-anchor hover selectors */


/* Styling for Expand */

#menu a.x, #menu a.x:visited{
background:#eee url(/css/images/expand3.gif) no-repeat bottom right;
}

#menu a.x:hover{
color:#a00;
background:#ddd;
}

#menu a.x:active{
color:#060;
background:#ccc;
}

